race-cancellation
This is a library with utils to implement a cancellable async function
with a pattern that solves a number of issues with cancellation of promises.
The pattern is a cancellable async function takes a function that will build
the cancellation race on demand.
Constraints
- Composable
- Cancellation concerns can be composed easily
- Lazy
- Should not create the Promise until it is raced or it will create meaningless unhandledRejections
- Should be able to avoid invoking the raced task if it is already cancelled
- Should be able to avoid invoking the cancellation task if the parent cancellation already won
RaceCancellation Interface
export type Race = <T>(task: Promise<T> | Task<T>) => Promise<T>;
export type Task<T> = () => Promise<T>;
export type CancellableTask<T> = (raceCancel: Race) => Promise<T>;
Since race cancellation is a function it can lazily create the Promise to
avoid unhandledRejection. It can also avoid creating the Promise if the task invoke fails.
Since it can take a function to invoke to produce the task,
it can avoid starting the task if it is already cancelled and can avoid creating the Promise
if the task fails on invoke.
This also allows the combined race cancellations to be lazy.
For example, if we are already cancelled because we are disconnected
we don't need to start a timeout.
Examples of Cancellable Async Functions
import * as fs from "fs";
async function pollFile(path, interval, raceCancel) {
while (!fs.existsSync(path)) {
await sleep(interval, raceCancel);
}
}
async function sleep(ms, raceCancel) {
let id;
try {
const createTimeout = () =>
new Promise<void>(resolve => {
id = setTimeout(() => {
resolve();
id = undefined;
}, ms);
})
return await raceCancel(createTimeout);
} finally {
if (id !== undefined) {
clearTimeout(id);
}
}
}